import { Header } from "@/components/header"; import { Footer } from "@/components/footer"; import { ProductPage } from "@/components/product-page"; interface ProductPageProps { params: Promise<{ id: string; }>; } export default async function Product({ params }: ProductPageProps) { const { id } = await params; return ( <>